home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / GRAPHICS / IMGLIB95 / IM_CVRT.DP_ / IM_CVRT.DP
Text File  |  1996-03-31  |  398b  |  20 lines

  1. {image conversion utility. }
  2.  
  3. program Im_cvrt;
  4. uses
  5.   Forms,
  6.   Bimage in 'BIMAGE.PAS' {ConvertForm1},
  7.   Ufullscr in 'UFULLSCR.PAS' {FullSlide},
  8.   Uabout in 'UABOUT.PAS' {AboutBox};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.CreateForm(TConvertForm1, ConvertForm1);
  14.   Application.CreateForm(TFullSlide, FullSlide);
  15.   Application.CreateForm(TAboutBox, AboutBox);
  16.   Application.Run;
  17. end.
  18.  
  19.  
  20.